home *** CD-ROM | disk | FTP | other *** search
- #include "window.h"
- #define NORM CREATE_VIDEO_ATTRIBUTE(black,white)
-
- WPOINTER w;
-
- main()
- {
- int row,col;
- WindowInitializeSystem();
- WindowSaveInitial(0);
- w = WindowInitialize(BORDER,1,1,40,10,NORM,NORM,SINGLEBOX);
- WindowOpen(w);
- WindowDisplay(w,1,NOEFFECT);
- WindowMoveCursor(w,7,4);
- WindowGetCursorPosition(w,&row,&col);
- WindowPrintf(w,
- "The row of the cursor is %d\nThe column of the cursor is %d",
- row,col);
- }
-